In [42]:
%%file example.html

<html>
<head>
  <script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.2/p5.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.2/addons/p5.dom.js"></script>

<script>

function setup() {
}

function draw() {
    ellipse(mouseX, mouseY, 80, 80);
}

</script>
</head>
<body>
</body>
Overwriting example.html
In [43]:
%%html
<iframe src="example.html">